home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Shareware / Programare / winhex / Reiser Superblock.txt < prev    next >
Text File  |  2005-05-02  |  1KB  |  45 lines

  1. template "ReiserFS Superblock"
  2.  
  3. // Created by Jens Kirschner on 05 Oct 2004
  4.  
  5. // X-Ways Software Technology AG, 2004
  6.  
  7. // The superblock always starts at offset 0x10000 = 64 KB regardless 
  8. // of sector or block sizes on the system. 
  9.  
  10.  
  11. description "To be applied to offset 0x10000 of a ReiserFS partition"
  12. applies_to disk
  13. sector-aligned
  14.  
  15. //requires 0x32 "52 65 49 73 45 72" // Reiser magic "ReIsEr"
  16.  
  17. begin
  18.     uint32    "Block count"
  19.     uint32    "Free block count"
  20.     uint32    "Root block #"
  21.     uint32    "Journal block #"
  22.     uint32    "Journal device #"
  23.     uint32    "Journal size"
  24.     uint32    "Max. transaction blocks"
  25.     uint32    "Journal magic"
  26.     uint32    "Max. batch blocks"
  27.     uint32    "Max. commit age (secs)"
  28.     uint32    "Max. transaction age (secs)"
  29.     uint16    "Block size"
  30.     uint16    "Max. size object ID array"
  31.     uint16    "Curr. size object ID array"
  32.     uint16    "State (1=clean)"
  33.     char[10]    "Reiser Magic"
  34.     uint16    "State (fsck)"
  35.     uint32    "Hash function code"
  36.     uint16    "Tree height"
  37.     uint16    "No. of blocks for block bitmap"
  38.     uint16    "Version"
  39.     uint16    "Reserved for journal"
  40.  
  41.     uint32    "Inode generation"
  42.     uint32    "Flags"
  43.     hex 16    "UUID"
  44.     char[16]    "Volume label"
  45. end